home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / stk-3.002 / stk-3 / STk-3.1 / Src / userinit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-21  |  1.1 KB  |  37 lines

  1. /*
  2.  *
  3.  * u s e r i n i t . c            -- The place where user put his/her
  4.  *                       initialization
  5.  *
  6.  * Copyright ⌐ 1993-1996 Erick Gallesio - I3S-CNRS/ESSI <eg@unice.fr>
  7.  * 
  8.  *
  9.  * Permission to use, copy, and/or distribute this software and its
  10.  * documentation for any purpose and without fee is hereby granted, provided
  11.  * that both the above copyright notice and this permission notice appear in
  12.  * all copies and derived works.  Fees for distribution or use of this
  13.  * software or derived works may only be charged with express written
  14.  * permission of the copyright holder.  
  15.  * This software is provided ``as is'' without express or implied warranty.
  16.  *
  17.  * This software is a derivative work of other copyrighted softwares; the
  18.  * copyright notices of these softwares are placed in the file COPYRIGHTS
  19.  *
  20.  *
  21.  *           Author: Erick Gallesio [eg@kaolin.unice.fr]
  22.  *    Creation date: 23-Jan-1994 19:09
  23.  * Last file update: 21-Jul-1996 11:49
  24.  */
  25.  
  26. #include "stk.h"
  27.  
  28. void STk_user_init(void)
  29. {
  30.   /* Put here the code you want to be run at init time */
  31. }
  32.  
  33. void STk_user_cleanup(void)
  34. {
  35.   /* Put here the code you want to be run when the interpreter dies */
  36. }
  37.